17efdd561a36ca1552fc4659afca2f687761b773,community/embedded-examples/src/main/java/org/neo4j/examples/Neo4jShell.java,Neo4jShell,startRemoteShellAndWait,#,82
Before Change
private static void startRemoteShellAndWait() throws Exception
{
graphDb = (GraphDatabaseAPI) new GraphDatabaseFactory().newEmbeddedDatabaseBuilder( DB_PATH ).
setConfig( ShellSettings.remote_shell_enabled, Settings.TRUE ).
newGraphDatabase();
createExampleGraph();
waitForUserInput( "Remote shell enabled, connect to it by executing\n"
After Change
graphDb = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder( DB_PATH )
.
setConfig( ShellSettings.remote_shell_enabled, Settings.TRUE ).
newGraphDatabase();
createExampleGraph();
waitForUserInput( "Remote shell enabled, connect to it by executing\n"